import * as React from "react"; import { type SearchParams } from "@/types/table"; import { Shell } from "@/components/shell"; import { Skeleton } from "@/components/ui/skeleton"; import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { getCodeGroups } from "@/lib/docu-list-rule/code-groups/service"; import { CodeGroupsTable } from "@/lib/docu-list-rule/code-groups/table/code-groups-table"; import { searchParamsCodeGroupsCache } from "@/lib/docu-list-rule/code-groups/validation"; import { InformationButton } from "@/components/information/information-button"; interface IndexPageProps { searchParams: Promise; } export default async function IndexPage(props: IndexPageProps) { const searchParams = await props.searchParams; const search = searchParamsCodeGroupsCache.parse(searchParams); const promises = Promise.all([ getCodeGroups({ ...search, }), ]); return (

Code Group 정의

{/*

문서 번호에 사용될 수 있는 다양한 코드 그룹의 정의를 관리하는 페이지입니다.

*/}
}> } >
); }